DataSource for Entity Framework in WPF
C1.LiveLinq.LiveViews.Xml Namespace / XmlExtensions Class / Attributes Method / Attributes(View<XElement>,XName) Method
The source view.
The System.Xml.Linq.XName to match.

In This Topic
    Attributes(View<XElement>,XName) Method
    In This Topic
    Returns a view representing a filtered collection of the attributes of every element in the source view. Only attributes that have a matching System.Xml.Linq.XName are included.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Attributes( _
       ByVal view As View(Of XElement), _
       ByVal name As XName _
    ) As View(Of XAttribute)
    public static View<XAttribute> Attributes( 
       View<XElement> view,
       XName name
    )

    Parameters

    view
    The source view.
    name
    The System.Xml.Linq.XName to match.

    Return Value

    A view that contains a filtered collection of the attributes of every element in the source view. Only attributes that have a matching System.Xml.Linq.XName are included.
    See Also